/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ant.internal.ui.editor.actions; import org.eclipse.jface.action.IAction; import org.eclipse.jface.text.source.IVerticalRulerInfo; import org.eclipse.jface.text.source.projection.ProjectionViewer; import org.eclipse.ui.editors.text.IFoldingCommandIds; import org.eclipse.ui.texteditor.AbstractRulerActionDelegate; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.ui.texteditor.TextOperationAction; public class FoldingExpandAllRulerAction extends AbstractRulerActionDelegate { /* * @see org.eclipse.ui.texteditor.AbstractRulerActionDelegate#createAction(org.eclipse.ui.texteditor.ITextEditor, * org.eclipse.jface.text.source.IVerticalRulerInfo) */ @Override protected IAction createAction(ITextEditor editor, IVerticalRulerInfo rulerInfo) { TextOperationAction action = new TextOperationAction(AntEditorActionMessages.getResourceBundle(), "Projection.ExpandAll.", editor, ProjectionViewer.EXPAND_ALL, true); //$NON-NLS-1$ action.setActionDefinitionId(IFoldingCommandIds.FOLDING_EXPAND_ALL); return action; } }